const compress/flate.maxMatchOffset
10 uses
compress/flate (current package)
deflate.go#L47: maxMatchOffset = 1 << 15 // The largest match offset
deflatefast.go#L128: if offset > maxMatchOffset || cv != candidate.val {
deflatefast.go#L182: if offset > maxMatchOffset || uint32(x) != candidate.val {
deflatefast.go#L274: e.cur += maxMatchOffset
deflatefast.go#L292: e.cur = maxMatchOffset + 1
deflatefast.go#L298: v := e.table[i].offset - e.cur + maxMatchOffset + 1
deflatefast.go#L308: e.cur = maxMatchOffset + 1
inflate.go#L795: f.dict.init(maxMatchOffset, dict)
inflate.go#L815: f.dict.init(maxMatchOffset, nil)
inflate.go#L834: f.dict.init(maxMatchOffset, dict)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |